热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C#|BitConverter。ToInt32()方法

C#|BitConverter。ToInt32()方法原文:

C# | BitConverter。ToInt32()方法

原文:https://www . geesforgeks . org/c-sharp-bit converter-to int32-method/

BitConverter。ToInt32(Byte[],Int32)方法用于返回从字节数组中指定位置的四个字节转换而来的 32 位有符号整数。
语法:

public static int ToInt32 (byte[] value, int startIndex);

参数:

值:是字节数组。
起始指数:是数值内的起始位置。

返回值:这个方法返回一个 32 位有符号整数,由 startIndex 开始的两个字节组成。
T3】例外:T5】


  • 参数异常:如果 startIndex 大于或等于值的长度减 3,并且小于或等于值的长度减 1。

  • ArgumentNullException: 如果值为空。

  • argumentoutofrangerexception:如果 startIndex 小于零或大于值的长度减 1。

以下程序说明了位转换器的使用。【方法:
例 1:****

c sharp . c sharp . c sharp . c sharp


// C# program to demonstrate
// BitConverter.ToInt32(Byte[], Int32);
// Method
using System;
class GFG {
// Main Method
public static void Main()
{
    try {
        // Define an array
        // of byte values.
        byte[] bytes = {32, 0, 0, 42, 0,
                        65, 0, 125, 0, 197,
                        0, 168, 3, 41, 4,
                               125, 32 };
        // Display the values of the myArr.
        Console.Write("Initial Array: ");
        // calling the PrintIndexAndValues()
        // method to print
        PrintIndexAndValues(bytes);
        // print char value
        Console.WriteLine("index     byte Array           int value");
        for (int index = 0; index < bytes.Length - 3;
                              index = index + 4) {
            int values = BitConverter.ToInt16(bytes, index);
            Console.WriteLine(" {0}     {1}         {2}",
             index, BitConverter.ToString(bytes, index,
                                           4), values);
        }
    }
    catch (ArgumentNullException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentOutOfRangeException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
// Defining the method
// PrintIndexAndValues
public static void PrintIndexAndValues(byte[] myArr)
{
    for (int i = 0; i < myArr.Length; i++) {
        Console.Write("{0} ", myArr[i]);
    }
    Console.WriteLine();
    Console.WriteLine();
}
}

输出:

Initial Array: 32 0 0 42 0 65 0 125 0 197 0 168 3 41 4 125 32
index byte Array int value
0 20-00-00-2A 32
4 00-41-00-7D 16640
8 00-C5-00-A8 -15104
12 03-29-04-7D 10499

例 2:议论文异常

c sharp . c sharp . c sharp . c sharp


// C# program to demonstrate
// BitConverter.ToInt32(Byte[], Int32);
// Method
using System;
class GFG {
// Main Method
public static void Main()
{
    try {
        // Define an array
        // of byte values.
        byte[] bytes = {32, 0, 0, 42, 0,
                        65, 0, 125, 0, 197,
                        0, 168, 3, 41, 4, 125};
        // Display the values of the myArr.
        Console.Write("Initial Array: ");
        // calling the PrintIndexAndValues()
        // method to print
        PrintIndexAndValues(bytes);
        // print char value
        Console.WriteLine("index      element          int value");
        for (int index = 1; index < bytes.Length - 2;
                                 index = index + 4) {
            if (index == bytes.Length - 3) {
                Console.WriteLine();
                Console.WriteLine("startIndex equals the "+
                               "length of value minus 3.");
                int values = BitConverter.ToInt32(bytes, index);
                Console.WriteLine("  {0}      {1}         {2}",
                 index, BitConverter.ToString(bytes, index, 4), values);
            }
            else {
                int values = BitConverter.ToInt32(bytes, index);
                Console.WriteLine("  {0}      {1}         {2}",
                 index, BitConverter.ToString(bytes, index, 4), values);
            }
        }
    }
    catch (ArgumentNullException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentOutOfRangeException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
// Defining the method
// PrintIndexAndValues
public static void PrintIndexAndValues(byte[] myArr)
{
    for (int i = 0; i < myArr.Length; i++) {
        Console.Write("{0} ", myArr[i]);
    }
    Console.WriteLine();
    Console.WriteLine();
    Console.WriteLine("initial Array in string: {0} ",
                       BitConverter.ToString(myArr));
    Console.WriteLine();
}
}

输出:

Initial Array: 32 0 0 42 0 65 0 125 0 197 0 168 3 41 4 125
initial Array in string: 20-00-00-2A-00-41-00-7D-00-C5-00-A8-03-29-04-7D
index element int value
1 00-00-2A-00 2752512
5 41-00-7D-00 8192065
9 C5-00-A8-03 61341893
startIndex equals the length of value minus 3.
Exception Thrown: System.ArgumentException

例 3:argumentout of rangeexception

c sharp . c sharp . c sharp . c sharp


// C# program to demonstrate
// BitConverter.ToInt32(Byte[], Int32);
// Method
using System;
class GFG {
// Main Method
public static void Main()
{
    try {
        // Define an array
        // of byte values.
        byte[] bytes = {32, 0, 0, 42, 0, 65,
                        0, 125, 0, 197, 0,
                        168, 3, 41, 4, 125};
        // Display the values of the myArr.
        Console.Write("Initial Array: ");
        // calling the PrintIndexAndValues()
        // method to print
        PrintIndexAndValues(bytes);
        // print char value
        Console.WriteLine("index      element          int value");
        for (int index = 0; index < bytes.Length + 1;
                                index = index + 4) {
            if (index == bytes.Length) {
                Console.WriteLine();
                Console.WriteLine("startIndex is greater than "+
                                 "the length of value minus 1");
                int values = BitConverter.ToInt32(bytes, index);
                Console.WriteLine("  {0}      {1}         {2}",
                 index, BitConverter.ToString(bytes, index, 4), values);
            }
            else {
                int values = BitConverter.ToInt32(bytes, index);
                Console.WriteLine("  {0}      {1}         {2}",
                 index, BitConverter.ToString(bytes, index, 4), values);
            }
        }
    }
    catch (ArgumentNullException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentOutOfRangeException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
// Defining the method
// PrintIndexAndValues
public static void PrintIndexAndValues(byte[] myArr)
{
    for (int i = 0; i < myArr.Length; i++) {
        Console.Write("{0} ", myArr[i]);
    }
    Console.WriteLine();
    Console.WriteLine();
    Console.WriteLine("initial Array in string: {0} ",
                       BitConverter.ToString(myArr));
    Console.WriteLine();
}
}

输出:

Initial Array: 32 0 0 42 0 65 0 125 0 197 0 168 3 41 4 125
initial Array in string: 20-00-00-2A-00-41-00-7D-00-C5-00-A8-03-29-04-7D
index element int value
0 20-00-00-2A 704643104
4 00-41-00-7D 2097168640
8 00-C5-00-A8 -1476344576
12 03-29-04-7D 2097424643
startIndex is greater than the length of value minus 1
Exception Thrown: System.ArgumentOutOfRangeException

例 4:ArgumentNullException

c sharp . c sharp . c sharp . c sharp


// C# program to demonstrate
// BitConverter.ToInt32(Byte[], Int32);
// Method
using System;
class GFG {
// Main Method
public static void Main()
{
    try {
        // Define an array of byte values.
        byte[] bytes = null;
        // get the int value
        int values = BitConverter.ToInt32(bytes, 0);
        Console.Write("{0}", values);
    }
    catch (ArgumentNullException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentOutOfRangeException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
    catch (ArgumentException e) {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
}

输出:

Exception Thrown: System.ArgumentNullException

参考:


  • https://docs . Microsoft . com/en-us/dotnet/API/system . bit converter . toint 32?视图=netframework-4.7.2


推荐阅读
  • 本文探讨了如何在给定整数N的情况下,找到两个不同的整数a和b,使得它们的和最大,并且满足特定的数学条件。 ... [详细]
  • Java 中 Writer flush()方法,示例 ... [详细]
  • 本文介绍如何使用Objective-C结合dispatch库进行并发编程,以提高素数计数任务的效率。通过对比纯C代码与引入并发机制后的代码,展示dispatch库的强大功能。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • UNP 第9章:主机名与地址转换
    本章探讨了用于在主机名和数值地址之间进行转换的函数,如gethostbyname和gethostbyaddr。此外,还介绍了getservbyname和getservbyport函数,用于在服务器名和端口号之间进行转换。 ... [详细]
  • 深入理解Java泛型:JDK 5的新特性
    本文详细介绍了Java泛型的概念及其在JDK 5中的应用,通过具体代码示例解释了泛型的引入、作用和优势。同时,探讨了泛型类、泛型方法和泛型接口的实现,并深入讲解了通配符的使用。 ... [详细]
  • Java 中的 BigDecimal pow()方法,示例 ... [详细]
  • Java 类成员初始化顺序与数组创建
    本文探讨了Java中类成员的初始化顺序、静态引入、可变参数以及finalize方法的应用。通过具体的代码示例,详细解释了这些概念及其在实际编程中的使用。 ... [详细]
  • 主要用了2个类来实现的,话不多说,直接看运行结果,然后在奉上源代码1.Index.javaimportjava.awt.Color;im ... [详细]
  • 本文介绍了如何在C#中启动一个应用程序,并通过枚举窗口来获取其主窗口句柄。当使用Process类启动程序时,我们通常只能获得进程的句柄,而主窗口句柄可能为0。因此,我们需要使用API函数和回调机制来准确获取主窗口句柄。 ... [详细]
  • 2023年京东Android面试真题解析与经验分享
    本文由一位拥有6年Android开发经验的工程师撰写,详细解析了京东面试中常见的技术问题。涵盖引用传递、Handler机制、ListView优化、多线程控制及ANR处理等核心知识点。 ... [详细]
  • 从 .NET 转 Java 的自学之路:IO 流基础篇
    本文详细介绍了 Java 中的 IO 流,包括字节流和字符流的基本概念及其操作方式。探讨了如何处理不同类型的文件数据,并结合编码机制确保字符数据的正确读写。同时,文中还涵盖了装饰设计模式的应用,以及多种常见的 IO 操作实例。 ... [详细]
  • 题目Link题目学习link1题目学习link2题目学习link3%%%受益匪浅!-----&# ... [详细]
  • 本文探讨了 C++ 中普通数组和标准库类型 vector 的初始化方法。普通数组具有固定长度,而 vector 是一种可扩展的容器,允许动态调整大小。文章详细介绍了不同初始化方式及其应用场景,并提供了代码示例以加深理解。 ... [详细]
  • 本文介绍了如何通过扩展 UnityGUI 创建自定义和复合控件,以满足特定的用户界面需求。内容涵盖简单和静态复合控件的实现,并展示了如何创建复杂的 RGB 滑块。 ... [详细]
author-avatar
910621rh_270
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有